
Stps=20,




Aspc=1,


// 1 to 4 instances of this particle is fine
NUM="rnd( 4 )",

// Record the start/load time
A0="T", 
A1="rnd( 4 ) + 2",  // mode
A2=".6 + rnd( .3 )",  // r max
A3=".1 + rnd( .35 )", // particle speed


// This gives an identical seed for each particle each frame
//B0="seed( ID + a0 )",


B0="2 * PI * ( ID / NUM )", // Phase offset

C0="a3 * t - .08 * s",     // theta
C1="a2 * sin( a1 * c0 )",    // r
X0="c1 * cos( c0 + B0 )",
Y0="c1 * sin( c0 + B0 )",




ConB=1,

Vers=100